DAY38:Duplicate Encoder


Posted by birdbirdmurmur on 2023-08-20

題目連結

https://www.codewars.com/kata/54b42f9314d9229fd6000d9c

解法

function duplicateEncode(word) {
    word = word.toLowerCase()
    let result = ''
    let n = {}

    for (const char of word) {
        n[char] ? n[char]++ : n[char] = 1
    }
    for (const char of word) {
        result += n[char] > 1 ? ')' : '('
    }

    return result
}

筆記

跟昨天的題型幾乎一樣
只差在第二個迴圈用for...of
word比較nobject


#javascript #Codewars #for...of #object







Related Posts

一些常用的 shell 指令

一些常用的 shell 指令

Day04 你知道 setTimout、setInterval、requestAnimationFrame API 三者的關係嗎

Day04 你知道 setTimout、setInterval、requestAnimationFrame API 三者的關係嗎

3. 卷積計算與其DSP物理意義

3. 卷積計算與其DSP物理意義


Comments